home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Multimedia / Movie3.0 / Source / xanim / xanim_gif.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-02  |  1.1 KB  |  59 lines

  1.  
  2. /*
  3.  * xanim_gif.h
  4.  *
  5.  * Copyright (C) 1990,1991,1992,1993,1994 by Mark Podlipec. 
  6.  * All rights reserved.
  7.  *
  8.  * This software may be freely copied, modified and redistributed without
  9.  * fee for non-commerical purposes provided that this copyright notice is
  10.  * preserved intact on all copies and modified copies.
  11.  * 
  12.  * There is no warranty or other guarantee of fitness of this software.
  13.  * It is provided solely "as is". The author(s) disclaim(s) all
  14.  * responsibility and liability with respect to this software's usage
  15.  * or its effect upon hardware or computer systems.
  16.  *
  17.  */
  18.  
  19. #include "xanim.h"
  20.  
  21. typedef struct
  22. {
  23.   LONG width;
  24.   LONG height;
  25.   UBYTE m;
  26.   UBYTE cres;
  27.   UBYTE pixbits;
  28.   UBYTE bc;
  29. } GIF_Screen_Hdr; 
  30.  
  31. typedef struct
  32. {
  33.   LONG left;
  34.   LONG top;
  35.   LONG width;
  36.   LONG height;
  37.   UBYTE m;
  38.   UBYTE i;
  39.   UBYTE pixbits;
  40.   UBYTE reserved;
  41. } GIF_Image_Hdr;
  42.  
  43. typedef struct 
  44. {
  45.   UBYTE valid;
  46.   UBYTE data;
  47.   UBYTE first;
  48.   UBYTE res;
  49.   LONG last;
  50. } GIF_Table;
  51.  
  52. typedef struct GIF_FRAME_STRUCT
  53. {
  54.   ULONG time;
  55.   XA_ACTION *act;
  56.   struct GIF_FRAME_STRUCT *next;
  57. } GIF_FRAME;
  58.  
  59.